Conditions | 1 |
Paths | 1 |
Total Lines | 22 |
Lines | 0 |
Ratio | 0 % |
Changes | 5 | ||
Bugs | 0 | Features | 0 |
1 | 'use strict'; |
||
13 | constructor(input) { |
||
14 | /** |
||
15 | * @private |
||
16 | * @type {Number} |
||
17 | */ |
||
18 | this.column = 0; |
||
19 | /** |
||
20 | * @private |
||
21 | * @type {String} |
||
22 | */ |
||
23 | this.input = `${input}`; |
||
24 | /** |
||
25 | * @private |
||
26 | * @type {Number} |
||
27 | */ |
||
28 | this.line = 1; |
||
29 | /** |
||
30 | * @private |
||
31 | * @type {Number} |
||
32 | */ |
||
33 | this.position = 0; |
||
34 | } |
||
35 | |||
82 |